home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / PRGMANIA / BFED.10 / INIT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-16  |  1.2 KB  |  45 lines

  1. /*********************************************
  2.     file: init.h
  3.     utility: header file of init.c
  4.     date: 16 dec 96
  5.     author: C.Moreau
  6.     modifications:
  7.     comments: 
  8. *********************************************/
  9.  
  10. #ifndef _INIT_H
  11. #define _INIT_H
  12.  
  13. /*********************************************
  14.     includes
  15. *********************************************/
  16. #ifdef __PUREC__
  17. #include <vdi.h>    /* defs for MFDB */
  18. #else
  19. #include <vdibind.h>
  20. #endif
  21.  
  22. /*********************************************
  23.     defines
  24. *********************************************/
  25.  
  26. /*********************************************
  27.     types definitions
  28. *********************************************/
  29.  
  30. /*********************************************
  31.     globals variables declarations
  32. *********************************************/
  33. extern int phys_handle;
  34. extern int gl_hchar, gl_wchar;
  35. extern int xdesk, ydesk, wdesk, hdesk;
  36. extern int ver_aes, ver_tos;
  37. extern int pxyarray[8];    /* for vdi calls */
  38.  
  39. /*********************************************
  40.     globals functions declarations
  41. *********************************************/
  42. extern void init(int *argc, char **argv[]);
  43. extern int open_vwork(register MFDB    *form);
  44.  
  45. #endif